home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 15 / CU Amiga Magazine's Super CD-ROM 15 (1997)(EMAP Images)(GB)[!][issue 1997-10].iso / CUCD / Graphics / Ghostscript / source / pdf2ps.bat < prev    next >
DOS Batch File  |  1996-03-22  |  376b  |  22 lines

  1. @echo off 
  2. @rem Convert PDF to PostScript.
  3.  
  4. if "%1"=="" goto usage
  5. if "%2"=="" goto usage
  6. echo -dNODISPLAY -dNOPAUSE >_.at
  7. :cp
  8. if "%3"=="" goto doit
  9. echo %1 >>_.at
  10. shift
  11. goto cp
  12.  
  13. :doit
  14. rem Watcom C deletes = signs, so use # instead.
  15. gs -q -sPSFile#%2 @_.at %1 -c quit
  16. goto end
  17.  
  18. :usage
  19. echo "Usage: pdf2ps [-dPSBinaryOK] [-dPSLevel1] [-dPSNoProcSet] input.pdf output.ps"
  20.  
  21. :end
  22.